python os if file exists

36

python check if file exists -

import os

os.path.exists("file.txt") # Or folder, will return true or false

how to check whether file exists in python -

import os.path

if os.path.isfile('filename.txt'):
    print ("File exist")
else:
    print ("File not exist")

os file exists -

import os
os.path.exists(path_to_file)

Comments

Submit
0 Comments